// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// Orders of rhythmical systems. public enum RhythmicOrder { /// Order of system. [UsedImplicitly] None = 0, /// Order of system. R24 = 24 } }